projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
608ff98
)
(Fmake_char_table): Initialize parent to nil.
author
Erik Naggum
<erik@naggum.no>
Sun, 8 Oct 1995 02:56:45 +0000
(
02:56
+0000)
committer
Erik Naggum
<erik@naggum.no>
Sun, 8 Oct 1995 02:56:45 +0000
(
02:56
+0000)
src/alloc.c
patch
|
blob
|
history
diff --git
a/src/alloc.c
b/src/alloc.c
index a428ac2c2f139936c57b0db07c106361597afffa..e747afd59cb993892be844c01c7b24d15c85c76f 100644
(file)
--- a/
src/alloc.c
+++ b/
src/alloc.c
@@
-771,6
+771,7
@@
See `char-table-extra-slot' and `set-char-table-extra-slot'.")
/* Add 2 to the size for the defalt and parent slots. */
vector = Fmake_vector (make_number (CHAR_TABLE_STANDARD_SLOTS + XINT (n)),
init);
+ XCHAR_TABLE (vector)->parent = Qnil;
XSETCHAR_TABLE (vector, XCHAR_TABLE (vector));
return vector;
}